home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / ADA / GNAT / !gcc / adainc / 2 / adb / a-timoio < prev    next >
Text File  |  1996-02-12  |  5KB  |  140 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --               A D A . T E X T _ I O . M O D U L A R _ I O                --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --     Copyright (C) 1992,1993,1994, 1995 Free Software Foundation, Inc.    --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  22. -- MA 02111-1307, USA.                                                      --
  23. --                                                                          --
  24. -- As a special exception,  if other files  instantiate  generics from this --
  25. -- unit, or you link  this unit with other files  to produce an executable, --
  26. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  27. -- covered  by the  GNU  General  Public  License.  This exception does not --
  28. -- however invalidate  any other reasons why  the executable file  might be --
  29. -- covered by the  GNU Public License.                                      --
  30. --                                                                          --
  31. -- GNAT was originally developed  by the GNAT team at  New York University. --
  32. -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
  33. --                                                                          --
  34. ------------------------------------------------------------------------------
  35.  
  36. with Ada.Text_IO.Modular_Aux;
  37.  
  38. with System.Unsigned_Types; use System.Unsigned_Types;
  39.  
  40. package body Ada.Text_IO.Modular_IO is
  41.  
  42.    package Aux renames Ada.Text_IO.Modular_Aux;
  43.  
  44.    ---------
  45.    -- Get --
  46.    ---------
  47.  
  48.    procedure Get
  49.      (File  : in File_Type;
  50.       Item  : out Num;
  51.       Width : in Field := 0)
  52.    is
  53.    begin
  54.       if Num'Size > Unsigned'Size then
  55.          Aux.Get_LLU (File, Long_Long_Unsigned (Item), Width);
  56.       else
  57.          Aux.Get_Uns (File, Unsigned (Item), Width);
  58.       end if;
  59.  
  60.    exception
  61.       when Constraint_Error => raise Data_Error;
  62.    end Get;
  63.  
  64.    procedure Get
  65.      (Item  : out Num;
  66.       Width : in Field := 0)
  67.    is
  68.    begin
  69.       if Num'Size > Unsigned'Size then
  70.          Aux.Get_LLU (Current_In, Long_Long_Unsigned (Item), Width);
  71.       else
  72.          Aux.Get_Uns (Current_In, Unsigned (Item), Width);
  73.       end if;
  74.  
  75.    exception
  76.       when Constraint_Error => raise Data_Error;
  77.    end Get;
  78.  
  79.    procedure Get
  80.      (From : in String;
  81.       Item : out Num;
  82.       Last : out Positive)
  83.    is
  84.    begin
  85.       if Num'Size > Unsigned'Size then
  86.          Aux.Gets_LLU (From, Long_Long_Unsigned (Item), Last);
  87.       else
  88.          Aux.Gets_Uns (From, Unsigned (Item), Last);
  89.       end if;
  90.  
  91.    exception
  92.       when Constraint_Error => raise Data_Error;
  93.    end Get;
  94.  
  95.    ---------
  96.    -- Put --
  97.    ---------
  98.  
  99.    procedure Put
  100.      (File  : in File_Type;
  101.       Item  : in Num;
  102.       Width : in Field := Default_Width;
  103.       Base  : in Number_Base := Default_Base)
  104.    is
  105.    begin
  106.       if Num'Size > Unsigned'Size then
  107.          Aux.Put_LLU (File, Long_Long_Unsigned (Item), Width, Base);
  108.       else
  109.          Aux.Put_Uns (File, Unsigned (Item), Width, Base);
  110.       end if;
  111.    end Put;
  112.  
  113.    procedure Put
  114.      (Item  : in Num;
  115.       Width : in Field := Default_Width;
  116.       Base  : in Number_Base := Default_Base)
  117.    is
  118.    begin
  119.       if Num'Size > Unsigned'Size then
  120.          Aux.Put_LLU (Current_Out, Long_Long_Unsigned (Item), Width, Base);
  121.       else
  122.          Aux.Put_Uns (Current_Out, Unsigned (Item), Width, Base);
  123.       end if;
  124.    end Put;
  125.  
  126.    procedure Put
  127.      (To   : out String;
  128.       Item : in Num;
  129.       Base : in Number_Base := Default_Base)
  130.    is
  131.    begin
  132.       if Num'Size > Unsigned'Size then
  133.          Aux.Puts_LLU (To, Long_Long_Unsigned (Item), Base);
  134.       else
  135.          Aux.Puts_Uns (To, Unsigned (Item), Base);
  136.       end if;
  137.    end Put;
  138.  
  139. end Ada.Text_IO.Modular_IO;
  140.